.f {
    display: flex;
}

.jfs {
    justify-content: flex-start;
}

.jfe {
    justify-content: flex-end;
}

.ja {
    justify-content: space-around;
}

.jb {
    justify-content: space-between;
}
.jc{
    justify-content: center;
}
.je {
    justify-content: space-evenly;
}

.ac {
    align-items: center;
}

.ab {
    align-items: baseline;
}
.as{
    align-items: flex-start;
}
.ae {
    align-items: flex-end;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}
.tr{
    text-align: right;
}
.w {
    flex-wrap: wrap;
}

.p_r {
    position: relative;
}

.p_a {
    position: absolute;
}


.ellipsis {
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
